All Questions
5 questions
0votes
0answers
42views
Design pattern for scheduling method calls (open-loop control) [duplicate]
I have an ERP-style system that needs to allow users to orchestrate an Entity.action() on a variety of objects that implement the Entity interface, at different datetimes. Calling action() would ...
-1votes
2answers
347views
How to deal with classes with same purpose from different libraries?
I have a question regarding software design/architecture. Are there any best practices or design patterns regarding the usage of classes with the same purpose from different libraries? Let's imagine ...
1vote
0answers
49views
Orchestrator or coordination pattern in Azure?
I am designing a background web job in Azure that, given a list of users it retrieves from a database, makes calls to a separate messaging microservice (for each record) that will end up sending N ...
1vote
1answer
307views
Writing Event Process architecture for multiple event handler interfaces
I am working on Java program which will listen multiple kind of events from multiple sources and store information to multiple sinks. Each interface will have its own source to listen and own sink ...
2votes
2answers
193views
How to prevent "updating" unchanged date using Data Mappers?
In some books the implementation of Data Mappers simply update the whole row of a table using the data inside an object, but in a system is possible that two different operations update different ...